dip_bundle 0.2.1

Write cross-platform application with React-like declarative UI framework and scalable ECS architecture all in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11

```mermaid
graph TD
	A($ dip bundle apply) --> |ApplyBundleAction| B(BundlePlugin: apply_bundle)
	B --> C{Is tools installed?}
	C --> |Yes| D(ToolPlugin: apply)
	C --> |No| E(ToolPlugin: install)
	E --> D(ToolPlugin: apply)
	D --> |BundleApplied| F(DipCliPlugin: exit_app)
```